翻訳と辞書
Words near each other
・ Apriona pascoei
・ Apriona paucigranula
・ Apriona punctatissima
・ Apriona rixator
・ Apriona rugicollis
・ Apriona sublaevis
・ Apriona submaculosa
・ Apriona swainsoni
・ Apriona teocchii
・ Apriona tigris
・ Apriona trilineata
・ Apriona tuberosicollis
・ Apriona unidentata
・ Apriona vagemaculata
・ Aprionella unicolor
Apriori algorithm
・ APriori Capital Partners
・ Apris
・ Aprisma Management Technologies
・ Apristomimus
・ Apristurus
・ Apristurus albisoma
・ Apristus
・ Aprite le finestre
・ Aprium
・ AprizeSat
・ Apriķi Manor
・ APRN
・ Apro language
・ Aproaerema


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Apriori algorithm : ウィキペディア英語版
Apriori algorithm
Apriori〔Rakesh Agrawal and Ramakrishnan Srikant (Fast algorithms for mining association rules in large databases ). Proceedings of the 20th International Conference on Very Large Data Bases, VLDB, pages 487-499, Santiago, Chile, September 1994.〕 is an algorithm for frequent item set mining and association rule learning over transactional databases. It proceeds by identifying the frequent individual items in the database and extending them to larger and larger item sets as long as those item sets appear sufficiently often in the database. The frequent item sets determined by Apriori can be used to determine association rules which highlight general trends in the database: this has applications in domains such as market basket analysis.
== Overview ==

The Apriori algorithm was proposed by Agarwal and Srikant in 1994. Apriori is designed to operate on databases containing transactions (for example, collections of items bought by customers, or details of a website frequentation). Other algorithms are designed for finding association rules in data having no transactions (Winepi and Minepi), or having no timestamps (DNA sequencing). Each transaction is seen as a set of items (an ''itemset''). Given a threshold C, the Apriori algorithm identifies the item sets which are subsets of at least C transactions in the database.
Apriori uses a "bottom up" approach, where frequent subsets are extended one item at a time (a step known as ''candidate generation''), and groups of candidates are tested against the data. The algorithm terminates when no further successful extensions are found.
Apriori uses breadth-first search and a Hash tree structure to count candidate item sets efficiently. It generates candidate item sets of length k from item sets of length k-1. Then it prunes the candidates which have an infrequent sub pattern. According to the downward closure lemma, the candidate set contains all frequent k-length item sets. After that, it scans the transaction database to determine frequent item sets among the candidates.
The pseudo code for the algorithm is given below for a transaction database T, and a support threshold of \epsilon. Usual set theoretic notation is employed, though note that T is a multiset. C_k is the candidate set for level k. At each step, the algorithm is assumed to generate the candidate sets from the large item sets of the preceding level, heeding the downward closure lemma. count() accesses a field of the data structure that represents candidate set c, which is initially assumed to be zero. Many details are omitted below, usually the most important part of the implementation is the data structure used for storing the candidate sets, and counting their frequencies.

\begin
& \mathrm(T,\epsilon)\\
&\qquad L_1 \gets \ \\
&\qquad k \gets 2\\
&\qquad \mathrm \neq \ \emptyset \\
&\qquad \qquad C_k \gets \ \land b \not \in a \} - \ \}\\
&\qquad \qquad \mathrm~t \in T\\
&\qquad \qquad\qquad C_t \gets \ \\
&\qquad \qquad\qquad \mathrm~c \in C_t\\
&\qquad \qquad\qquad\qquad \mathit() \gets \mathit()+1\\
&\qquad \qquad L_k \gets \\\
&\qquad \qquad k \gets k+1\\
&\qquad \mathrm


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Apriori algorithm」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.